home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / windows / games / wincapt.arj / DIBDLL.H < prev    next >
C/C++ Source or Header  |  1992-03-12  |  660b  |  23 lines

  1. /*
  2.  *  dibdll.h
  3.  *
  4.  *  Copyright (c) 1991 Microsoft Corporation. All rights reserved
  5.  *
  6.  *  Header file for dllinit.c, print.c, and dibapi.rc.  It includes 
  7.  *  the declaration for ghDLLInst, a global variable which stores the 
  8.  *  DLL's instance handle.  It also defines constants for the DLL's 
  9.  *  printing dialog.
  10.  */
  11.  
  12. /* Defines for the DLL's printing dialog. */
  13.  
  14. #define IDC_BOX1                    123
  15. #define IDC_PRINTTEXT1              401
  16. #define IDC_PRINTTEXT2              402
  17. #define IDC_PERCENTAGE              403
  18.  
  19.  
  20. /* Global variable used by the DIB API DLL */
  21.  
  22. extern HANDLE ghDLLInst;        // Initialized in dllinit.c
  23.